home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / pascal / pnl010.zip / TEST.PAS < prev    next >
Pascal/Delphi Source File  |  1992-03-01  |  108b  |  10 lines

  1. Program Test;
  2.  
  3. Uses Objects,
  4.      Err_Desc;
  5. Var
  6.   L : Longint;
  7. begin
  8.   L := 0;
  9.   L := 1 div L;
  10. end.